home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Utilities / Virus / Install_FVK < prev    next >
Text File  |  1998-06-24  |  4KB  |  136 lines

  1. ;
  2. ;$VER: FVK Installscript 1.0 (02/02/98) by RaMoNsTeR\DC
  3. ;-----------------------------------------------------------
  4. ;     -=- Why are you looking here n e wayz? :) -=-
  5. ;
  6. (SET @app-name "FVK")
  7. (SET @default-dest "SYS:")
  8.  
  9. (message    "\n\n--××·· -÷- ··××---÷---××·· -÷- ··××---÷---××·· -÷- ··××-- -÷-\n\n"
  10.         "Digital Corruption presents...\n\n"
  11.         "FastVirusKiller by Dave Jones (c)1998\n\n"
  12.         "--××·· -÷- ··××---÷---××·· -÷- ··××---÷---××·· -÷- ··××-- -÷-")
  13.  
  14. (SET DestDir
  15.     (ASKDIR    (prompt "Please Select where you would like FVK installed.\nA new directory called 'FastVirusKiller' will be created.")
  16.         (help   "\n\nSelect a volume or drawer where you would like the FVK drawer to be created.\n\n"
  17.             "The main executable and support documentation etc. will be placed inside the 'FVK' dir."
  18.         )
  19.         (default @default-dest)
  20.         (disk)
  21.      )
  22. )
  23.  
  24. (complete 0)
  25.  
  26. (SET DestDir    (TACKON DestDir "FastVirusKiller"))
  27. (SET @default-dest DestDir)
  28.  
  29.  
  30. (set runstart
  31.     (askchoice
  32.         (prompt "Do you wish to run FastVirusKiller on system startup?")
  33.         (help    "Installing FVK to WBStartup means FVK will be run every time\n"
  34.             "your system is booted up.\n\n"
  35.             "If you wish to use/run FVK manually and not on startup, then\n"
  36.             "choose not to run FVK to startup.")
  37.         (default 1)
  38.         (choices "Yes Please" "No Thanks")
  39.     )
  40. )
  41.  
  42. (if (= runstart 0)
  43.     (COPYFILES
  44.         (prompt    "Installing FVK to WBStartup.")
  45.         (help    "\n\nThe main FVK executable will now be copied to WBStartup")
  46.         (source "FastVirusKiller/FastVirusKiller")
  47.         (dest    "SYS:WBStartup")
  48.         (infos)
  49.         (confirm)
  50.         (optional nofail askuser force)
  51.     )
  52.  
  53. )
  54.  
  55.     (COPYFILES
  56.         (prompt    "Installing the FVK main file.")
  57.         (help    "\n\nThe main FVK executable will now be copied to the destination dir.")
  58.         (source "FastVirusKiller/FastVirusKiller")
  59.         (dest    DestDir)
  60.         (infos)
  61.         (confirm)
  62.         (optional nofail askuser force)
  63.     )
  64.  
  65.  
  66. (complete 15)
  67.  
  68. (SET DestDir    (TACKON DestDir "Documentation"))
  69.  
  70.     (COPYFILES
  71.         (prompt    "Installing the FVK documentation.")
  72.         (help    "\n\nTo install the documentation to the FVK directory leave the boxes ticked.\n\n"
  73.             "If you do not wish to install documention deselect the appropriate checkboxes."
  74.         )
  75.         (source "FastVirusKiller/Documentation")
  76.         (dest     DestDir)
  77.         (infos)
  78.         (confirm)
  79.         (optional nofail askuser force)
  80.         (all)
  81.     )
  82.  
  83. (complete 30)    
  84.  
  85.     (COPYLIB
  86.         (prompt    "Installing the xfd library.")
  87.         (help    "\n\nXFD library decrunches files packed with supported crunchers.\nIt is necessary for FastVirusKiller to run correctly.\n\n"
  88.             "XFD library is (c) 1998 Georg Hormann.")
  89.         (source "FastVirusKiller/libs/xfdmaster.library")
  90.         (dest    "libs:")
  91.         (confirm)
  92.         (optional nofail askuser force)
  93.     )
  94.    
  95.  
  96. (complete 45)
  97.     
  98.     (COPYFILES
  99.         (prompt    "Installing the xfd external support files.")
  100.         (help    "\n\nXFD library decrunches files packed with supported crunchers.\nIt is necessary for FastVirusKiller to run correctly.\n\n"
  101.             "XFD library is (c) 1998 Georg Hormann.")
  102.         (source "FastVirusKiller/libs/xfd")
  103.         (dest    "libs:xfd")
  104.         (optional nofail askuser force)
  105.         (confirm)
  106.         (all)
  107.     )
  108.  
  109. (complete 75)
  110.  
  111.     (COPYLIB
  112.         (prompt    "\n\nInstalling the reqtools library.")
  113.         (help    "\n\nReqTools is a popular shared library used by many applications.\n\n"
  114.             "It is required by FVK in order to run correctly."
  115.             )
  116.         (source "FastVirusKiller/libs/reqtools.library")
  117.         (dest    "libs:")
  118.         (confirm)
  119.         (optional nofail askuser force)
  120.     )
  121.     
  122.     
  123. (complete 90)
  124.  
  125.     
  126. (IF (> (run "Sys:Utilities/MultiView FastVirusKiller/documentation/FastVirusKiller.GUIDE") 0)
  127.     (IF (> (run "Sys:Utilities/AmigaGuide FastVirusKiller/documentation/FastVirusKiller.GUIDE") 0)
  128.     )
  129. )
  130.  
  131. (complete 100)
  132.     
  133. (message "\n\nThanks for installing FastVirusKiller!\n\nFor bugreports/support etc. please refer to the included documentation...\n\n...ENJOY!!!")
  134.  
  135. (EXIT)
  136.